home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Bypass / LogHook / Makefile < prev   
Makefile  |  1995-10-23  |  886b  |  33 lines

  1. #####################################################################
  2. #
  3. #    Copyright 1993 Jeremy Slade.
  4. #
  5. #    You are free to use all or any parts of the LogHook project
  6. #    however you wish, just give credit where credit is due.
  7. #    The author (Jeremy Slade) shall not be held responsible
  8. #    for any damages that result out of use or misuse of any
  9. #    part of this project.
  10. #
  11. #
  12. #    Project: LogHook
  13. #
  14. #    File: Makefile
  15. #
  16. #    Description: Makefile to build the LogHook executables
  17. #
  18. #    Original Author: Jeremy Slade
  19. #
  20. #    Revision History:
  21. #        Created
  22. #            JGS Tue May 11 20:53:26 PDT 1993
  23. #
  24. #####################################################################
  25.  
  26. CFLAGS = -g -Wall -ObjC -arch m68k -arch sparc -arch hppa -arch i386
  27.  
  28. LogHook: LoginHook.m LogoutHook.m
  29.     $(CC) $(CFLAGS) LoginHook.m -o LoginHook
  30.     $(CC) $(CFLAGS) LogoutHook.m -o LogoutHook
  31.     
  32.     
  33.